function checkCookies() {
var text = "";

if (navigator.cookieEnabled == true) {
return true;
} else {
return false;
}
return text;
}